/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* LOAD */

.loader-wrapper 
{
	display:flex;
	position:absolute;
	width:100%;
	height:100%;
	justify-content:center;
	top:0;
	margin-top:130px;
}

svg
{
	animation: rotate 1.5s linear infinite;
}

svg circle 
{
	fill:none;
	stroke-width:5;
	stroke:#15bef0;
	stroke-linecap:round;
	stroke-dasharray:75;
	stroke-dashoffset:75;
	transform:translate(5px,5px);
	animation:animate 4s linear infinite;
}

@keyframes animate {
	0%, 100% 
	{
  	  stroke-dashoffset:75;
  	}
	50% 
	{
  	  stroke-dashoffset:0;
  	}
	50.1%
	{
		stroke-dashoffset:150;
	}
}

/* MAIN SECTIONS */

body
{
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
	overflow-y:scroll;
	-ms-overflow-style:none;
	scrollbar-width:none;
}

html
{
	scroll-behavior:smooth;
}

/* QUOTATION MARKS */

q
{
	quotes: "\201C" "\201D" "\2018" "\2019";
}

/* HEADER */

#header-banner
{
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	background-color:#15bef0;
}

.container-top-contents
{
	width:800px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

#logo
{
	display:inline-block;
	width:100px;
	cursor:pointer;
	margin-top:15px;
	margin-bottom:15px;
	width:100px;
}

/* EDITORIAL DESIGN */

#editorial-design
{
	width:800px;
	margin-top:70px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	margin-bottom:150px;
}

#editorial-design h
{
	color:black;
	font-family:"Roberto Bold";
	font-size:45px;
	letter-spacing:7px;
	line-height:1.25;
}

#editorial-design p
{
	margin-top:20px;
	color:black;
	font-family:"Roberto Light";
	font-size:15px;
	line-height:2;
	text-align:center;
}

/* PROJECT 1 */

#project-1
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	margin-bottom:20px;
}

#project-1 h
{
	color:black;
	font-family:"Roberto Light";
	font-size:45px;
	letter-spacing:7px;
	text-align:center;
}

#project-1-paragraph
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:left;
	margin-bottom:40px;
}

#project-1-paragraph p
{
	color:black;
	font-family:"Roberto Light";
	font-size:15px;
	text-align:center;
	line-height:2;
}

.container-body
{
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.gallery
{
	width:100%;
	display:grid;
	grid-gap:10px;
	grid-template-columns: auto auto;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.gallery img
{
	display:block;
	width:100%;
	height:100%;
}

.image 
{
  	position:relative;
}

.overlay
{
	position:absolute;
	width:100%;
	height:100%;
	background: rgba(0,0,0,0.5);
	color:white;
	display:flex;
	font-family:"Roberto Bold";
	align-items:center;
	justify-content:center;
	font-size:20px;
	line-height:1.25;
	opacity:0;
	transition: opacity 0.25s;
	padding-left:20px;
	padding-right:20px;
}

.overlay:hover
{
	opacity:1;
	cursor:pointer;
}

.link-width
{
	max-width:210px;
	width:80%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

#button
{
	border:2px solid black;
	border-radius:25px;
	font-size:15px;
	font-family:"Roberto Bold";
	padding-left:30px;
	padding-right:30px;
	padding-top:10px;
	padding-bottom:10px;
	text-decoration:none;
	text-align:center;
	display:block;
	margin-top:50px;
	color:black;
}

#button:hover
{
	background-color:black;
	color:white;
	transition: ease-in .2s;
	cursor:pointer;
	text-decoration:none;
}

/* PROJECT 2 */

.container-body-1
{
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.gallery-1
{
	width:100%;
	display:grid;
	grid-gap:10px;
	grid-template-columns: auto auto;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.gallery-1 img
{
	display:block;
	width:100%;
	height:100%;
}

#project-2
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	margin-bottom:20px;
	margin-top:150px;
}

#project-2 h
{
	color:black;
	font-family:"Roberto Light";
	font-size:45px;
	letter-spacing:7px;
	text-align:center;
}

#project-2-paragraph
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	margin-bottom:30px;
}

#project-2-paragraph p
{
	color:black;
	font-family:"Roberto Light";
	font-size:15px;
	text-align:center;
	line-height:2;
}


/* PROJECT 3 */

.container-body-2
{
	margin-top:150px;
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.gallery-2
{
	width:100%;
	display:grid;
	grid-gap:10px;
	grid-template-columns: auto auto auto;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.gallery-2 img
{
	display:block;
	width:100%;
	height:100%;
}

#project-3
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	margin-bottom:20px;
	margin-top:150px;
}

#project-3 h
{
	color:black;
	font-family:"Roberto Light";
	font-size:45px;
	letter-spacing:7px;
	text-align:center;
}

#project-3-paragraph
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:left;
	margin-bottom:40px;
}

#project-3-paragraph p
{
	color:black;
	font-family:"Roberto Light";
	font-size:15px;
	text-align:center;
	line-height:2;
}

/* PROJECT 4 */

.container-body-3
{
	margin-top:150px;
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.gallery-3
{
	width:100%;
	display:grid;
	grid-gap:10px;
	grid-template-columns: auto auto;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

.gallery-3 img
{
	display:block;
	width:100%;
	height:100%;
}

#project-4
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:center;
	margin-bottom:20px;
	margin-top:150px;
}

#project-4 h
{
	color:black;
	font-family:"Roberto Light";
	font-size:45px;
	letter-spacing:7px;
	text-align:center;
}

#project-4-paragraph
{
	width:800px;
	vertical-align:top;
	display:block;
	margin-right:auto;
	margin-left:auto;
	text-align:left;
	margin-bottom:40px;
}

#project-4-paragraph p
{
	color:black;
	font-family:"Roberto Light";
	font-size:15px;
	text-align:center;
	line-height:2;
}

/* FOOTER */

#footer
{
	margin-top:100px;
	background-color:#15bef0;
}

section
{
	background:url("../images/LR-Black-Logo.png") no-repeat;
}

.column-button
{
	width:50px;
	height:60px;
	padding-top:25px;
	margin-left:auto;
	margin-right:auto;
}

.gotopbtn img
{
	filter:brightness(0);
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	display:block;
	width:100%;
	text-decoration:none;
}

.gotopbtn img:hover
{
	filter:invert(1);
	text-decoration:none;
	cursor:pointer;
}

.container-footer
{
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

#social-media
{
	width:80%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	padding-top:25px;
}

#social-media img
{
	width:30px;
	filter:brightness(0);
	text-decoration:none;
	display:inline-block;
	margin-left:5px;
	margin-right:5px;
	text-align:center;
}

#social-media img:hover
{
	filter:invert(1);
	text-decoration:none;
	cursor:pointer;
}

#company
{
	width:90%;
	text-align:center;
	margin-left:auto;
	margin-right:auto;
	color:black;
	font-family:"Roberto Light";
	font-size:12px;
	padding-bottom:5px;
	padding-top:25px;
}


@font-face
{
	src:url("../../Roboto/Roboto-Light.ttf");
	font-family:"Roberto Light"
}

@font-face
{
	src:url("../../Roboto/Roboto-Bold.ttf");
	font-family:"Roberto Bold"
}

/* MAIN SECTIONS */

/* iPHONE */

@media screen and (max-width:640px){
	#header-banner
	{
		width:100%;
		display:flex;
	}
	.container-top-contents
	{
		width:80%;
	}
	#logo
	{
		display:block;
		margin-left:auto;
		margin-right:auto;
	}
}

/* iPAD */

@media screen and (max-width:900px){
	#header-banner
	{
		width:100%;
		display:flex;
	}
	.container-top-contents
	{
		width:80%;
	}
	#logo
	{
		display:block;
		margin-left:auto;
		margin-right:auto;
	}
}


/* CONTAINERS */

/* iPHONE */

@media screen and (max-width:640px){
	.container-body
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-1
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-2
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-3
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
}

/* iPAD */

@media screen and (max-width:900px){
	.container-body
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-1
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-2
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
	.container-body-3
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
		margin-top:50px;
	}
}

/* EDITORIAL DESIGN */

/* iPHONE */

@media screen and (max-width:640px){
	#editorial-design
	{
		width:85%;
	}
	#editorial-design h
	{
		font-size:25px;
	}
	#project-1
	{
		width:85%;
		margin-top:0px;
	}
	#project-1 h
	{
		font-size:25px;
	}
	#project-1-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-1-paragraph p
	{
		font-size:12px;
	}
	.gallery
	{
		width:100%;
		grid-template-columns: auto;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery img
	{
		display:block;
		width:100%;
		height:100%;
	}
	#button
	{
		margin-left:auto;
		margin-right:auto;
		text-align: center;
	}
	#project-2
	{
		width:85%;
		margin-top:100px;
	}
	#project-2 h
	{
		font-size:25px;
	}
	#project-2-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph p
	{
		font-size:12px;
	}
	#project-2-paragraph-2
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph-2 p
	{
		font-size:12px;
	}
	#project-2-paragraph-3
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph-3 p
	{
		font-size:12px;
	}
	.gallery-1
	{
		width:100%;
		grid-template-columns:auto;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery-1 img
	{
		display:block;
		width:100%;
		height:100%;
	}
	.link-width
	{
		max-width:210px;
		width:80%;
	}
	#project-3
	{
		width:85%;
		margin-top:100px;
	}
	#project-3 h
	{
		font-size:25px;
	}
	#project-3-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-3-paragraph p
	{
		font-size:12px;
	}
	.gallery-2
	{
		width:100%;
		grid-template-columns:auto;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery-2 img
	{
		display:block;
		width:100%;
		height:100%;
	}
	#project-4
	{
		width:85%;
		margin-top:100px;
	}
	#project-4 h
	{
		font-size:25px;
	}
	#project-4-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-4-paragraph p
	{
		font-size:12px;
	}
	.gallery-3
	{
		width:100%;
		grid-template-columns:auto;
		margin-left:auto;
		margin-right:auto;
	}	
	.gallery-3 img
	{
		display:block;
		width:100%;
		height:100%;
	}
}

/* iPAD */

@media screen and (max-width:900px){
	#editorial-design
	{
		width:85%;
	}
	#editorial-design h
	{
		font-size:25px;
	}
	#project-1
	{
		width:85%;
		margin-top:0px;
	}
	#project-1 h
	{
		font-size:25px;
	}
	#project-1-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-1-paragraph p
	{
		font-size:12px;
	}
	.gallery
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery img
	{
		display:block;
		width:100%;
		height:100%;
	}
	.link-width
	{
		max-width:210px;
		width:80%;
	}
	#project-2
	{
		width:85%;
		margin-top:100px;
	}
	#project-2 h
	{
		font-size:25px;
	}
	#project-2-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph p
	{
		font-size:12px;
	}
	#project-2-paragraph-2
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph-2 p
	{
		font-size:12px;
	}
	#project-2-paragraph-3
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-2-paragraph-3 p
	{
		font-size:12px;
	}
	.gallery-1
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery-1 img
	{
		display:block;
		width:100%;
		height:100%;
	}
	#project-3
	{
		width:85%;
		margin-top:100px;
	}
	#project-3 h
	{
		font-size:25px;
	}
	#project-3-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-3-paragraph p
	{
		font-size:12px;
	}
	.gallery-2
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery-2 img
	{
		display:block;
		width:100%;
		height:100%;
	}
	#project-4
	{
		width:85%;
		margin-top:100px;
	}
	#project-4 h
	{
		font-size:25px;
	}
	#project-4-paragraph
	{
		width:85%;
		margin-bottom:30px;
	}
	#project-4-paragraph p
	{
		font-size:12px;
	}
	.gallery-3
	{
		width:100%;
		margin-left:auto;
		margin-right:auto;
	}
	.gallery-3 img
	{
		display:block;
		width:100%;
		height:100%;
	}
}

/* FOOTER */

/* iPHONE */

@media screen and (max-width:640px){
	#footer
	{
		width:100%;
	}
	.container-footer
	{
		width:90%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
	}
}

/* iPAD */

@media screen and (max-width:900px){
	#footer
	{
		width:100%;
	}
	.container-footer
	{
		width:90%;
		margin-left:auto;
		margin-right:auto;
		text-align:center;
	}

}